home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / disk-tools / file splitter / chunker / source / bfn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-01  |  390 b   |  24 lines

  1. /*************************************************************************
  2.  *
  3.  * Chunker/DeChunker
  4.  *
  5.  * Copyright ©1995 Lee Kindness
  6.  * cs2lk@scms.rgu.ac.uk
  7.  *
  8.  * bfn.h
  9.  */
  10.  
  11. #ifndef __BFN_H__
  12. #define __BFN_H__
  13.  
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <string.h>
  17. #include <ctype.h>
  18. #include "machine.h"
  19.  
  20. char *BuildFName(char *base, long *num);
  21. void FreeFName(char *fname);
  22.  
  23. #endif
  24.